From cc2757ec413e6da27a0e2a6dff117f4e9d8ac20f Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 25 Dec 2006 01:07:10 +0000 Subject: [PATCH] (Sorting Sequences): In sort*, add a little cautionary note about the key procedure being used heavily. --- man/cl.texi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/man/cl.texi b/man/cl.texi index 56f81bb3947..2c357f5fec6 100644 --- a/man/cl.texi +++ b/man/cl.texi @@ -4092,7 +4092,9 @@ fed to the @var{predicate} function. For example, @noindent sorts @var{data}, a sequence of strings, into increasing alphabetical order without regard to case. A @code{:key} function of @code{car} -would be useful for sorting association lists. +would be useful for sorting association lists. It should only be a +simple accessor though, it's used heavily in the current +implementation. The @code{sort*} function is destructive; it sorts lists by actually rearranging the @code{cdr} pointers in suitable fashion. -- 2.30.2